home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / Metrowerks Support / Libraries / CW MPWTool / MAToolHdr_nd.pch++ < prev    next >
Encoding:
Text File  |  1996-04-03  |  999 b   |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    MAFrameworkHdr_nd.pch++
  3.  *
  4.  *    Script to generate the 'MAFrameworkHdr<xxx>' precompiled header for Metrowerks C/C++.
  5.  *  Copyright © 1993 metrowerks inc.  All rights reserved.
  6.  */
  7.  
  8. //--------------------------------------------------------------------------------
  9.  
  10. // ========================================================
  11. // ••• BIG RED SWITCH FOR DEBUGGING •••
  12. // ========================================================
  13. #ifndef wantDebugging
  14.     #define wantDebugging 9        // 0=nodebug, 1=debug (finer grain control
  15.                                 // can be found in CWMacAppSwitches.h)
  16. #endif
  17.  
  18.  
  19. #if __option(precompile)
  20.  
  21.     #include "CWMacAppSwitches.h"
  22.     
  23.     #include "CWMAFrameworkHdr.h"
  24.        
  25.     /*
  26.      *    Support for automatically naming the precompiled header file ...
  27.      */
  28.     
  29.     #ifdef powerc
  30.         #pragma precompile_target "MAFrameworkHdrPPC_nd"
  31.     #else
  32.         #pragma precompile_target "MAFrameworkHdr68K_nd"
  33.     #endif
  34.     
  35. #else
  36.  
  37.     #ifdef powerc
  38.         #include "MAFrameworkHdrPPC_nd"
  39.     #else
  40.         #include "MAFrameworkHdr68K_nd"
  41.     #endif
  42.  
  43. #endif
  44.